home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 51 / Amiga Format CD51 (2000-03-10)(Future Publishing)(GB)[!][issue 2000-04].iso / -serious- / sound / filtersound / filtersound.readme next >
Text File  |  2000-01-27  |  3KB  |  79 lines

  1. Short:    Standalone configurable FIR/IIR Filter
  2. Author:   Christos Dimitrakakis (olethros@geocities.com)
  3. Uploader: Christos Dimitrakakis (olethros@geocities.com)
  4. Version:  V0.1
  5. Type:     mus/misc
  6.  
  7.  
  8.  
  9. This is a simple filter for 8-bit sounds.
  10. You specify A and B parameter values for it (A values for the non-recursive bit, 
  11. and B values for the recursive bit)
  12.  
  13. Usage:
  14.  
  15. FilterSound sound_file number_of_A number_of_B A1 A2 ... An B1 B2 ... Bm
  16.  
  17. number_of_A is the number of A coefficients
  18. number_of_B is the number of B coefficients
  19.  
  20. Ax and Bx are the actual coefficients.
  21.  
  22. (16.16 fixed point arithmetic is used for the calculations)
  23.  
  24. This then implements the following IIR (or FIR filter if you set number_of_B to
  25. 0) filter:
  26.  
  27. y[t] = Sum{a[1]*x[t]+a[2]*x[t-1]+..+a[n]*x[t-(n-1)]}
  28.       +Sum{b[1]*y[t-1]*b[2]*y[t-2]+..+b[n]*y[t-m]}
  29.  
  30. If you can calculate what values to use .. you can do whatever you want with dis
  31. filter :)
  32.  
  33. Calculating which values to use, however, is another matter altogether :)
  34.  
  35.  
  36. Other neat stuff by me:
  37. ======================
  38.  
  39. /dev/basic/bgp.lha            -  Blitz Genetic-Programming Environment
  40. /dev/basic/gasp.lha           -  Genetic Algorithm Sample Packer in Blitz
  41. /dev/misc/SimpTrans.lha       -  Simple Automatic Translation of .ct files!
  42. /dev/misc/ST_uk2gr.lha        -  Uk2Gr phrasebook for SimpTrans
  43. /dev/misc/YAAV.lha            -  YAAV V0.99 - Yet Another Autodoc Viewer
  44. /dev/misc/Uk2GrCorpus.lha     -  A compact english-greek parallel aligned linguistic corpus
  45. /game/shoot/allrox.lha        -  HardCore FRENETIC shootem'up - HARD! FAST! OUCH!
  46. /game/actio/wreckage.lha      -  Experimental Driving Sim
  47. /game/actio/wreckage_src.lha  -  Source for driving sim (older version :)
  48. /gfx/show/gsaview.la          -  GsAView - View ghostscript output with anti-aliasing
  49. /util/pack/agf.lha            -  AGF V0.9 n*8-bit Sample Pre-Packing Processor
  50.  
  51.  
  52. Olethros/DC, Jan 2000
  53. ----------------------
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. ============================= Archive contents =============================
  61.  
  62. LhA Freeware Version 2.1
  63. Copyright © 1991-94 by Stefan Boberg.
  64. Copyright © 1998,1999 by Jim Cooper and David Tritscher.
  65.  
  66. Listing of archive 'games:t/olethros/FilterSound.lha':
  67. Original  Packed Ratio    Date     Time    Name
  68. -------- ------- ----- --------- --------  -------------
  69.    17004    9677 43.0% 09-Jan-00 02:05:16 +FilterSound
  70.     2485    1233 50.3% 09-Jan-00 02:17:52  FilterSound.readme
  71. -------- ------- ----- --------- --------
  72.    19489   10910 44.0% 09-Jan-00 02:18:30   2 files
  73.  
  74. Operation successful.
  75.  
  76.  
  77.  
  78. Created Using CreateAminetReadMe by Lorens Johansson.
  79.